home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / osticket_detect.nasl < prev    next >
Text File  |  2005-03-31  |  5KB  |  158 lines

  1. #
  2. # This script was written by George A. Theall, <theall@tifaware.com>.
  3. #
  4. # See the Nessus Scripts License for details.
  5. #
  6.  
  7.  
  8. # NB: I define the script description here so I can later modify
  9. #     it with the version number and install directory.
  10. desc["english"] = "
  11. This script detects whether the target is running osTicket and extracts
  12. version numbers and locations of any instances found.
  13.  
  14. osTicket is a PHP-based open source support ticket system. See
  15. http://www.osticket.com/ for more information. 
  16.  
  17. Risk factor : None";
  18.  
  19.  
  20. if (description) {
  21.   script_id(13858);
  22.   script_version("$Revision: 1.2 $");
  23.  
  24.   name["english"] = "osTicket Detection";
  25.   script_name(english:name["english"]);
  26.  
  27.   script_description(english:desc["english"]);
  28.  
  29.   summary["english"] = "Checks for the presence of osTicket";
  30.   script_summary(english:summary["english"]);
  31.  
  32.   script_category(ACT_GATHER_INFO);
  33.   script_copyright(english:"This script is Copyright (C) 2004 George A. Theall");
  34.  
  35.   family["english"] = "General";
  36.   script_family(english:family["english"]);
  37.  
  38.   script_dependencie("global_settings.nasl", "http_version.nasl");
  39.   script_require_ports("Services/www", 80);
  40.  
  41.   exit(0);
  42. }
  43.  
  44. include("global_settings.inc");
  45. include("http_func.inc");
  46. include("http_keepalive.inc");
  47.  
  48. host = get_host_name();
  49. port = get_http_port(default:80);
  50. if (debug_level) display("debug: looking for osTicket on ", host, ":", port, ".\n");
  51.  
  52. if (!get_port_state(port)) exit(0);
  53. if (!can_host_php(port:port)) exit(0);
  54.  
  55. # Search for osTicket in a couple of different locations.
  56. #
  57. # NB: Directories beyond cgi_dirs() come from a Google search - 
  58. #     "inurl:open.php osticket" - and represent the more popular
  59. #     installation paths currently. Still, cgi_dirs() should catch
  60. #     the directory if its referenced elsewhere on the target.
  61. dirs = make_list(
  62.   "",
  63.   "/osticket",
  64.   "/helpdesk",
  65.   "/soporte",
  66.   "/support",
  67.   "/ticket",
  68.   cgi_dirs()
  69. );
  70. installs = 0;
  71. foreach dir (dirs) {
  72.   # Get osTicket's open.php.
  73.   url = string(dir, "/open.php");
  74.   if (debug_level) display("debug: checking ", url, ".\n");
  75.   req = http_get(item:url, port:port);
  76.   res = http_keepalive_send_recv(port:port, data:req);
  77.   if (res == NULL) exit(0);           # can't connect
  78.   if (debug_level) display("debug: res =>>", res, "<<\n");
  79.  
  80.   # Make sure the page is from osTicket.
  81.   if (egrep(pattern:'alt="osTicket"', string:res, icase:TRUE)) {
  82.     # nb: I only know about versions 1.1b, 1.2.4, 1.2.5, and 1.2.7 and only
  83.     #     have access to 1.2.5 and 1.2.7 so I don't know how accurate
  84.     #     version numbers will be.
  85.     pat = "alt=.osTicket STS v(.+) *$";
  86.     if (debug_level) display("debug: grepping results for =>>", pat, "<<\n");
  87.     matches = egrep(pattern:pat, string:res);
  88.     foreach match (split(matches)) {
  89.       match = chomp(match);
  90.       if (debug_level) display("debug: grepping >>", match, "<< for =>>", pat, "<<\n");
  91.       ver = eregmatch(pattern:pat, string:match);
  92.       if (ver == NULL) break;
  93.       ver = ver[1];
  94.  
  95.       # Distinguish between 1.2.5 and 1.2.7.
  96.       if (ver == "1.2") {
  97.         # nb: 1.2.5 has an attachments dir whereas 1.2.7 has attachments.php
  98.         url = string(dir, "/attachments.php");
  99.         if (debug_level) display("debug: checking ", url, ".\n");
  100.         req = http_get(item:url, port:port);
  101.         res = http_keepalive_send_recv(port:port, data:req);
  102.         if (res == NULL) exit(0);           # can't connect
  103.         if (debug_level) display("debug: res =>>", res, "<<\n");
  104.  
  105.         #     thus if attachments.php exists it's 1.2.7...
  106.         if (egrep(pattern:"You do not have access to attachments", string:res)) {
  107.           ver = "1.2.7";
  108.         }
  109.         #     otherwise it's 1.2.5.
  110.         else {
  111.           ver = "1.2.5";
  112.         }
  113.       }
  114.       if (debug_level) display("debug: osTicket version =>>", ver, "<<\n");
  115.  
  116.       # Success!
  117.       set_kb_item(
  118.         name:string("www/", port, "/osticket"), 
  119.         value:string(ver, " under ", dir)
  120.       );
  121.       installations[dir] = ver;
  122.       ++installs;
  123.  
  124.       # nb: only worried about the first match.
  125.       break;
  126.     }
  127.   }
  128.   # Scan for multiple installations only if "Thorough Tests" is checked.
  129.   if (installs && !thorough_tests) break;
  130. }
  131.  
  132. # Report any instances found unless Report verbosity is "Quiet".
  133. if (installs && report_verbosity > 0) {
  134.   if (installs == 1) {
  135.     foreach dir (keys(installations)) {
  136.       # empty - just need to set 'dir'.
  137.     }
  138.     info = string("osTicket ", ver, " was detected on the remote host under the path ", dir, ".");
  139.   }
  140.   else {
  141.     info = string(
  142.       "Multiple instances of osTicket were detected on the remote host:\n",
  143.       "\n"
  144.     );
  145.     foreach dir (keys(installations)) {
  146.       info = info + string("    ", installations[dir], ", installed under ", dir, "\n");
  147.     }
  148.     info = chomp(info);
  149.   }
  150.  
  151.   desc = ereg_replace(
  152.     string:desc["english"],
  153.     pattern:"This script[^\.]+\.",
  154.     replace:info
  155.   );
  156.   security_note(port:port, data:desc);
  157. }
  158.